icon-browser: Show category descriptions as tooltips
authorMatthias Clasen <mclasen@redhat.com>
Sat, 2 Aug 2014 11:55:44 +0000 (13:55 +0200)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 2 Aug 2014 11:59:57 +0000 (13:59 +0200)
No better place for them right now.

demos/icon-browser/iconbrowserwin.c

index e9dfd30896ca69783329b7c0eda913a2411d85af..7f7d751f3e22bb60f536977dc10ac554ebbd4511 100644 (file)
@@ -173,6 +173,10 @@ add_context (IconBrowserWindow *win,
 
   gtk_list_box_insert (GTK_LIST_BOX (win->context_list), row, -1);
 
+  /* set the tooltip on the list box row */
+  row = gtk_widget_get_parent (row);
+  gtk_widget_set_tooltip_text (row, description);
+
   if (win->current_context == NULL)
     win->current_context = c;
 }